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, and 6.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 the MongoDB Community Forums.

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:

$ python setup.py 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:

$ 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.

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

Uploaded Source

Built Distributions

pymongo-4.3.2-cp311-cp311-win_amd64.whl (382.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.3.2-cp311-cp311-win32.whl (378.8 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (497.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (502.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (494.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (487.9 kB view details)

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

pymongo-4.3.2-cp311-cp311-macosx_10_9_universal2.whl (413.1 kB view details)

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

pymongo-4.3.2-cp310-cp310-win_amd64.whl (382.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.3.2-cp310-cp310-win32.whl (378.8 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (492.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (486.0 kB view details)

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

pymongo-4.3.2-cp310-cp310-manylinux2014_x86_64.whl (509.2 kB view details)

Uploaded CPython 3.10

pymongo-4.3.2-cp310-cp310-manylinux2014_s390x.whl (511.5 kB view details)

Uploaded CPython 3.10

pymongo-4.3.2-cp310-cp310-manylinux2014_ppc64le.whl (515.9 kB view details)

Uploaded CPython 3.10

pymongo-4.3.2-cp310-cp310-manylinux2014_i686.whl (504.7 kB view details)

Uploaded CPython 3.10

pymongo-4.3.2-cp310-cp310-manylinux2014_aarch64.whl (509.0 kB view details)

Uploaded CPython 3.10

pymongo-4.3.2-cp310-cp310-manylinux1_i686.whl (504.7 kB view details)

Uploaded CPython 3.10

pymongo-4.3.2-cp310-cp310-macosx_10_9_universal2.whl (412.7 kB view details)

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

pymongo-4.3.2-cp39-cp39-win_amd64.whl (382.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.3.2-cp39-cp39-win32.whl (378.8 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (492.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (495.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (489.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (485.2 kB view details)

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

pymongo-4.3.2-cp39-cp39-manylinux2014_x86_64.whl (508.5 kB view details)

Uploaded CPython 3.9

pymongo-4.3.2-cp39-cp39-manylinux2014_s390x.whl (510.9 kB view details)

Uploaded CPython 3.9

pymongo-4.3.2-cp39-cp39-manylinux2014_ppc64le.whl (515.3 kB view details)

Uploaded CPython 3.9

pymongo-4.3.2-cp39-cp39-manylinux2014_i686.whl (503.9 kB view details)

Uploaded CPython 3.9

pymongo-4.3.2-cp39-cp39-manylinux2014_aarch64.whl (508.3 kB view details)

Uploaded CPython 3.9

pymongo-4.3.2-cp39-cp39-manylinux1_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.9

pymongo-4.3.2-cp39-cp39-manylinux1_i686.whl (503.9 kB view details)

Uploaded CPython 3.9

pymongo-4.3.2-cp39-cp39-macosx_10_9_universal2.whl (412.7 kB view details)

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

pymongo-4.3.2-cp38-cp38-win_amd64.whl (381.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.3.2-cp38-cp38-win32.whl (378.6 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (500.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (504.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (504.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (496.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (493.3 kB view details)

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

pymongo-4.3.2-cp38-cp38-manylinux2014_x86_64.whl (518.8 kB view details)

Uploaded CPython 3.8

pymongo-4.3.2-cp38-cp38-manylinux2014_s390x.whl (521.5 kB view details)

Uploaded CPython 3.8

pymongo-4.3.2-cp38-cp38-manylinux2014_ppc64le.whl (525.8 kB view details)

Uploaded CPython 3.8

pymongo-4.3.2-cp38-cp38-manylinux2014_i686.whl (511.8 kB view details)

Uploaded CPython 3.8

pymongo-4.3.2-cp38-cp38-manylinux2014_aarch64.whl (518.5 kB view details)

Uploaded CPython 3.8

pymongo-4.3.2-cp38-cp38-manylinux1_x86_64.whl (504.6 kB view details)

Uploaded CPython 3.8

pymongo-4.3.2-cp38-cp38-manylinux1_i686.whl (511.8 kB view details)

Uploaded CPython 3.8

pymongo-4.3.2-cp38-cp38-macosx_10_9_x86_64.whl (381.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.3.2-cp37-cp37m-win_amd64.whl (381.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.3.2-cp37-cp37m-win32.whl (378.1 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.9 kB view details)

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

pymongo-4.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (487.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (486.1 kB view details)

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

pymongo-4.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (478.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (477.4 kB view details)

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

pymongo-4.3.2-cp37-cp37m-manylinux2014_x86_64.whl (501.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.3.2-cp37-cp37m-manylinux2014_s390x.whl (502.6 kB view details)

Uploaded CPython 3.7m

pymongo-4.3.2-cp37-cp37m-manylinux2014_ppc64le.whl (507.6 kB view details)

Uploaded CPython 3.7m

pymongo-4.3.2-cp37-cp37m-manylinux2014_i686.whl (495.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.3.2-cp37-cp37m-manylinux2014_aarch64.whl (500.8 kB view details)

Uploaded CPython 3.7m

pymongo-4.3.2-cp37-cp37m-manylinux1_x86_64.whl (485.9 kB view details)

Uploaded CPython 3.7m

pymongo-4.3.2-cp37-cp37m-manylinux1_i686.whl (495.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.3.2-cp37-cp37m-macosx_10_6_intel.whl (410.9 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

File details

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

File metadata

  • Download URL: pymongo-4.3.2.tar.gz
  • Upload date:
  • Size: 807.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2.tar.gz
Algorithm Hash digest
SHA256 95913659d6c5fc714e662533d014836c988cc1561684f07b6a0a8343651afa66
MD5 f20f2b97d4fc202b8d9f9e9dbb997cd5
BLAKE2b-256 d3ad6f6f80e0da1f7d18f1505c32dbc4a01cd4c5e712b1d4f5637186409b8da7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 382.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c8f061eabef3a6b3696f7f7be3eaed7928864ff84a2248429f9c7eb564343cc
MD5 f3ed9bc21330159ed587bc536c379445
BLAKE2b-256 6eb7021eaba4948c3a97dc482c8a21f1380f82522bb1108ac576d3928168d58d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 378.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 006799ddba1f2e73ce27689f016791ab80e51876c52ae2265d8c76016baaa10e
MD5 d73243dad66a201139ac52099c76cb9c
BLAKE2b-256 ccdf3a652afbc9aeac3ef4cc4e543be11d7f1c393bc08f807c87acf109673e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21e1cfa3e73cd253afcad32e2a46a277f52553635ccc0dd4d643f5824af88428
MD5 f13b708a904fcc2bc863f96819a84da6
BLAKE2b-256 e950d5fba4194bab7c3b2590998ca6c3cc8aa2d056f1788e24af215514aab22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db94b741dde2cc44ec038495d041c8f6dd4d510bb4e5d0be1b9f9aae4fbb28c6
MD5 36ed42a420878cdb719e1b06339cd7a4
BLAKE2b-256 0ff73d8827982b26f210ff8da4227f28b5166135cf2f9013f0b982989c42f0ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c22ad464688a807bec103734cbdf712489c74d439cdd346e6f12095070bfbf5
MD5 1e9ae4e918abfe3695042d062dc84f3a
BLAKE2b-256 6c8db0ccfc5948d41f09bb5b00fa6d6febe7bcfd0e553f24399fe532cd20a514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cefd851fdea191fc4db780157a28a11e0a80bccd34c454a73f252a287d28b2c7
MD5 3bb8a927a9a177c080a1b6c821e90b59
BLAKE2b-256 0c915768cca8c050cbb32c8986f1b985b8881eb12186de7284a73b68b6949723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5db3bddbbc2657aa76088e76d24a616aefc98883c48dc27f3c3829ddb2ca10d
MD5 9abf0544d199c63e6daf8ae40fb7956b
BLAKE2b-256 858747568208772443e187ec7168586d45dd27a4b1707e621d3419fb97df88be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 77436db17ab2baec2356cf38db32d13c7cd11267c8137864c67391f2dfdcc5e4
MD5 bc9c9c230afaeabef23e7702fd3440a9
BLAKE2b-256 117fee226578057c246a7b10f6e92f6b649099f96fb0a9a7ebe00d89d949016d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 382.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6049927b50c39e7dc51e75b5bb30c8501fbf1f08414b3447bcc9f9f967c116ed
MD5 ff9ecc500127c9e183fd1e9a08f9a998
BLAKE2b-256 a666940b469b28ab81a03a1aadcc325166d992cef7d4b255f4e99c8f3b4acfcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 378.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 28ab644adc92c21a249570e2d677ebf4f2ef374630ddec98f19d2630dcb154c6
MD5 c7df190ed72cabb6797ec221fd326afa
BLAKE2b-256 e40fc76f95efe8815160c196aaa4c64cc0452584befbf6a3ac2b39b074a96f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95f41c4e3b9e315655d6d1136d904ceda24fe5ea2d273ec6f9d66dbef06f3446
MD5 26c319f92a59fe5a0fb2eb02ed9b1912
BLAKE2b-256 4d2beaba7fa989df7a7fe2cd3f0e30db194844a85e026659d9686f86401db5b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 178ffaa833d473b16fbd65c4a485af56484a50e2a201e8d0547f98cf5007f133
MD5 e5294e088f3d804caa590ddb1292546c
BLAKE2b-256 7979058e404ea52ae6d02d41284b82cd678d08b0612eb344c99be437a5d05398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5231eb29e8174509250bc5fc609d6e8eceebfb209bf37bd6e014cbd7b6554344
MD5 04942843264ab3efb818c432fee8182e
BLAKE2b-256 da2af5e6592dd672030ca739000d3de6130bb2b37c0eccc187ad73899a73a603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a06c9ca15a2133478d1c775c4e7e5e782961b6254a3fc81ab5d0fb3cf9b8e358
MD5 a3d4bbd24c22a48177f8abecb41ea7ca
BLAKE2b-256 3e0be87226f858f405a191b50da26b771fa0c6afc6667b5741117e5e65a3e803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 352bc034e112c9f6a408e2796e74bae900d3167a804224b2c24ea75b5d57e9f9
MD5 bdca61ffbdfbfb2448c43268069ed8b4
BLAKE2b-256 83d31fe2b7b4468a2c08613013a2bda962e02017c9d34046522bcb45499fdba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 253faefea46482ffa87c77fdd01cd95d430cc84aae8d7a78ba920ea6cebcf3c7
MD5 3d193e72ef9dbd06e6b03d2a532ea548
BLAKE2b-256 e6f28e37426e52e75954495756a41f7c675a20b5b3725c3066b5211c3fd2a03e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b510843ea70e5bc9c096a93f683b28e8d43f1ad89da0126502d88b3d90f07ebe
MD5 51dffa26d40178416f767008b4b2f2e8
BLAKE2b-256 c09f5f3faa5f9ab62d616b1eb4732b9b57d65d4f61119f447981c384e84a2693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cad31512e6956c95210fbd585d5b80df28425251260387164c6382894f0c6eca
MD5 72cfab63e634b6356a2783dc8c56b17c
BLAKE2b-256 aa5838bc3a1134fb2b1ea9b245e7031b8aa8fca0d5bc0ca46140370b8c8aa0d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1be15568e4b2be4c75bc54a542276c857628e09cbc283befcf4c45a0a22c1eec
MD5 fc0ba719647e42eb091181f8fc803566
BLAKE2b-256 47f29771504459e95b5345e8aad31848b80f030f0e8ef53b77c908b64bdaf4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 372307185d8e17ea31d2f3ff6943e213a6c379ccf547f18b05a58a1620d6f92a
MD5 22458780d1d30afc77369adac4a0b9bf
BLAKE2b-256 0f452c4fbba0b2a45127d4104ab5ee28d700cc3337b1c4d1eada64f83284e027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f41781c8310fe1ae3ed0b809e2d7be6ebba9f0954c08e1d18ac443916b82b29
MD5 651a7f1844473dd55c0ad7ef7e1fa0eb
BLAKE2b-256 a4fa73b91bd2e7eac6a0d24d9cff537044005d7ad572f812087e869a74365e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68320e5326e2b1e49dcd901e6dcbe3009b8a0fd0da0c618579a2be7cf5f2d7be
MD5 42118cbc17d8365cf556209e729e462c
BLAKE2b-256 3e11a5b51ac5239c3d2d4883d0e7d8222bd51545b2546745e7364ed178df0f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 382.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d7bdfac2f3c87d0971691f2a091427f55bb6b94b23d74213ed2de87d8facba85
MD5 3d985469171595110532a21b5dc3d47a
BLAKE2b-256 607da593fb244ec97b842b9265a18079ecc5f0548ec7f20082a8a9ce66f2d6cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 378.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 53dd2c034fb92c019e5e581cd361ed3fa9833abb56cc76725d56dcba169746fe
MD5 747ebf33ef66033d1b42c1570b01b1a6
BLAKE2b-256 50652d8c8c0c0333c72348a7307da9a965a27c27697c54940b0e1c31408a28da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6498ae9a76ad64617703373a43e3cd8454271bca0d7d395b393b4f31aa68f734
MD5 471d4a91752eaa16e57e023b1b553458
BLAKE2b-256 639ba4445b89ec1606d73acb3fcf8f2a320d66980bd397101059d1d547fd30ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c821c897498e3e3c3254f7a90195f71473361f502201fd396281869d8108857
MD5 9b2c9551d4af43126505a8ab61c70e6b
BLAKE2b-256 e83910ee67b9c331d47b6759b0add92094edffbf945d87ecefc3dd34444a9cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 404bc7f7190e8975f41f0c7498e303e9cb291f6384e1889ac4333448652a83d6
MD5 cb1c66fb06307766d46c42b7fe78f5b5
BLAKE2b-256 f049302d8d551ee086a859b078177d8f62f2cb31ccba7dc07198f2fe01ba3916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab7f49c5ca3db7ae94743b0da1b21c5e7402a561a0614c1b0fba718aad591611
MD5 0adc24aa64342e314c20eef04877200e
BLAKE2b-256 66fb1c1ffaf7c90b7f5e9e5764a35f6d59920235c65dff3c93522c84b292474d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 04597a5d877a984b5e3059e942b02d68f8af9bb4328592abca27e82015560112
MD5 41cb5b38579e2a45a66b9e2c48b23bdc
BLAKE2b-256 83e0fd02ccf2259c7f1cce32eb127116e85d111467a76cba2cff7d1790e5db5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f423e066de040f4f93dcac0e6ceec37ffc25cc591a609ecc3ab20adfdbb787ae
MD5 2de2038a706d8160cd4b5d9feaedeb0f
BLAKE2b-256 4dc3c3954e9bf1caf080b6e34a20fd1d6683755fa735361ee05e548143298c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b2a8b2b7d9196d46e5181f88632eeca5bf79a69ca2e9911229c58f66aebfbeb
MD5 34799ce3997d33e9de67760377d50af9
BLAKE2b-256 5857c8e7c8c905ed9c398c844812f82be6887caba60a4cf082874b23dcc982e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8e82d6cc2f1cf5017485f55d67375bacf73d95c40903759e46024a987bab86f
MD5 158b6edb371b6022037ecab9f28a08ce
BLAKE2b-256 221894994913fc39d49740edcd457d78fc19ab52b4936362603f26d6ad541f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98fd65c2aee7a55615dda1a1b0340ae8d756151983cb5040ea59a730083221e7
MD5 2836a4d2b3c7f88d39c867f9ba64f1d7
BLAKE2b-256 b27c8e50c5b006d935a082fb8bcaed832e50fefd9799b3bc2662bfc38453a575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ce5d43c011e03cd1a42a4dcc0d5c8772f18533cdfe672a63607942d62581df4
MD5 145cbe4aebc3aee1fb2befe839b8eb4e
BLAKE2b-256 e354e1bbbe24497edf3acf806b92716b142076d56688d9c4bd0c0ef5c57055d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94639935caf13af551429bd13e4cb20e7c110a57d07f0c6a84a9bf3c2c9000ad
MD5 c1a3d22f963306fb46c8b9831ddc59b8
BLAKE2b-256 2cf2dfa6dba52d1cb7ae4954566c8f5534da59f8b7612bde41b7a5ab10415e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35e9eec45a212306143367b0702c2aff75c375290015af00fa8b653641c20b34
MD5 ba2697442422910df62b299664df17b8
BLAKE2b-256 ffed8cce5480249a7204711fb187addda04287692800ec69e76cd17c15686eb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 11630f5b3287375c85f5b7a788d3a7241671af24fda2b49a3396bc53cbf1c0c6
MD5 c562a7b77de024222310fbb5c335b35b
BLAKE2b-256 34d47405e91248f6dd93c2c8f372e145534f4efcbb27834b0b034fb5650d322f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 68213f4c1531b95dcfef40f79dd95e94484f69ec5949b7f42f82ad2bee135f7f
MD5 972ffa4da24d56587158b32d08567365
BLAKE2b-256 d5610419290826bf140770a82d7e5f52c5e46f27ed15e3550f45e6f6c93631d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cc7b269af274ac0d5d9a5c8d035b03ccc34438baa01705bf8ec7cc6a31093ace
MD5 f6412c9e32d50716a1157175b82d5b3c
BLAKE2b-256 1c06a7bd6bc2d794ab944969d46094d0980a4c5f5b52f89a7e4458e07e86f45d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 381.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64b010681019c0b312f342e3aae1f3091a7dc7ff4b7a3dec72fc0e7238be9477
MD5 37c6ba5e631c285edc8784be95591f8a
BLAKE2b-256 65eb1a8c12f7712b0e6d6641e74deec7f238d6f3b83eda6fce2234699ca0ade3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 378.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7424b7c59b16e7889a720a5b2e2dda518753c6fec6c6582ab2fcedf97df3df75
MD5 5823ffc11cdee43f30e2c3e15516c091
BLAKE2b-256 d06917692bd65ffe72f8c019f4a5feca0b2f63441b74b51525edbc159e56ae4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceded83530f5507dadd873f8d004b56f996de44d9c3f56b7f26c22ca823f12ee
MD5 e4359381c885241becc95cdb98c37e93
BLAKE2b-256 c5ffebddc0952bf5706e538546b532f427a47bc2e9489b15437ffdf465ad5d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 715ad027daff84e213ab74fa3ec98cad8dabb669653a71daa0dd6f80a1c32dd0
MD5 73d58146f7544677a197182d64135c5b
BLAKE2b-256 42f4dba9c63849da901a5369e494f47c9d20ad931ac9d1830845625c6b08e618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26dd79e60f883b6467b91c8af0be484147365b18cebf9248f8e72c035aecb693
MD5 cb920bafb984d4c5592c392eff0b6d54
BLAKE2b-256 3f901acc2d6d685df6e907db1a8b3ef9e0fd147d534a11e2a5bf141476ea25b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4082d1b660e70d9df71da00050f7adb902b73a2287216e69ada124bd2f89636
MD5 a332fae3fbdf96d4e97edcd29dc38781
BLAKE2b-256 ed76de429ff6d3fa5da0cd8cd9b31e7be2031a8917df064101576f4fcef453c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f3861081540e1f06d1e5d131d1419b9fc507834b6865407e0f56735b4082566c
MD5 1041a1e868ad2dbbed8ca9e17ce7f219
BLAKE2b-256 0d33d3a8e2fe01e68fb8da16986a6fbef6f3e9d95d5ae926ceec61bbd3720880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f7763c9e37e6d59406ce2defc25266980b24a86708ec6db753b02459db45715
MD5 25086d7af73090dbcdc27dbb6045f509
BLAKE2b-256 86216a90dd73dfaa62e0f817d01358f0888ee17c64f6e75012829b518a16a0b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f968621d019ed165f1cb5b037875ce3425ea7704407234895c7c52ad32190da
MD5 0958a52e97f7b75fe82172164acf5153
BLAKE2b-256 746867eeddc99dc7a5b54752f6248c56001d9b886efd0f482f5742a293b6b3b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d7ad2112a705e992ca0cca98ccbb874276c495f8d9df627438c2ee94f810a3d
MD5 0cab5948522c01e2829b3d7de2b0fc3a
BLAKE2b-256 4738284ec98363fdf14203a0478b16715e3b4e8d7a039aaf713a6ca3fb987966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb47ba9c19da8fb4174f9d7bbbdb1796ad288c61dda35c96fb45d69e61d3a5cb
MD5 7815f29fe7c36debf7ccb3c8c65f3687
BLAKE2b-256 ffe6252f824acef1f6768c92b2b31d279e3c167e002a8f4a9fc7c8de074eb056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f907daec92208d748db4ea04568aa33e9254e0c27e4e40ac287e1b1ca8b12b5
MD5 06b9fe9d16b8cc35bdfe99e2674c11d0
BLAKE2b-256 af813cc9abed256999ddc867e82114f6541f6e5db07e274b41c79006bb6aaad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39308580bcdbc368a2664c48761226c06b1d3368cc3ab3492d3cca88dc2e5e27
MD5 f7daf6ddc516677ae99e5e52a3062360
BLAKE2b-256 a44e91d657fe2f067fd6e12119ad9a5606bdec8bdf2ce00b8f160feab4f6e24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f84b8428a41d7d7f2931762c27b09ffa8b3bc51e3b5dab40ab2b1d008091247e
MD5 31ba74219ed644880f1c9047453aa0e2
BLAKE2b-256 97cabf19655de3ab42f255623a1f2a1409fc11f080658a51987c41c02d3751f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 07e05784578bf7f8ecdfc6d0fd1e684e6259e9b5fdb5439a58c4f0df950fae29
MD5 e2dc0a38bb9ef7477ce1fcadd52c76a5
BLAKE2b-256 8fcf0bf8f53c0572ccb5945f2e6d16d32af1dc31cd16261edf3aacf93b6cc7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 315fe5f628e9aee67cc4c17b91ddf08c5c0917b764f433a5acf9aed33164a8f0
MD5 652e9498fa0737488e435d90affe8170
BLAKE2b-256 cefbfc4e1925d5ce29d1a6de623ea451c0d846e39789b8d58d20c891ac71df62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b36da8aeb95cc1abea7b80e578fb6bcdbe395638d16b1b0068bc121e2111a00f
MD5 480f3b71d665f5a100b66deaa170757c
BLAKE2b-256 0c30672b68dd94e933cd5e03a0c91ac311e150790b3454a7d1607648a0bf4f98

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6461d29a967e1980ba7798e4da8178dbe4245fe4a66ebb3aa07339c9da383c3a
MD5 30d00de3c3a5d183c388645285411230
BLAKE2b-256 a23f37f6bfc42c833581a2f9b2c729b339efac67cf88fdcb5e357b02b5371db6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.3.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 378.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3966dcba4b80dbc0eb4dd08d6f7127e3b1701cd829b6c13507a956c878b78546
MD5 3e58ef5803fa6fe86ae6b22669aab1e9
BLAKE2b-256 737e77d03b3b0fc1f9ab54686d7c49285e3e41ace43d975681091a4af0a451c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36e7a74bdab9aa19f5ac94dfd74111d2164ccea752afbef0aa039d1266e7c404
MD5 9983a157002e0ee7cf7e249955230329
BLAKE2b-256 1245b90d52c99b9d5e2df307d625cccdd6349bbce5e68589cc9d6e9e79572cb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8817b17db2013354aa7f187d5825d65da0d7720b5ca697af37ff5efdf97e7f62
MD5 69883566e8d041ce7493ba74bfe83ea9
BLAKE2b-256 715d74c71244c7fed309a4408a1e0b76d30794659835cc80d4fd676e7c6cb72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07f58d05d2289f93e16ddc93be6e0453fa67afd33c1b015f6bd3d9741c0963ff
MD5 1110df4651e1bbdfcadb0cb0482a18d9
BLAKE2b-256 68906c7e68c02b0d5280c68b8bf7e19568dbfdefe6ba209cc4e92c7af6e4936f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e96483316a799923f13bb61170f05feab22e8bd8630bf8cdcd440c78f307039a
MD5 c1cb22c8022dc1f3177263fe22834b02
BLAKE2b-256 5ccd083afc9526cc56d5a06248f9b466148821d423cc536473dc8c83e2f1553d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cea32bd14d8c0725e22e5fcc607a81e3636650c689697c12423a34f9a125c7e2
MD5 508d26cd7989b7c803e4ac15bd02486a
BLAKE2b-256 f9574ce00bb1f08639b8636c285d7981bddbd9560e0294d1ff17fcb49491277d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aee8fafea8bb669deb0dd4878d947f79b2ef298e60f06e1fe799598929b68be2
MD5 145aa41f37f900203725b8e131140d43
BLAKE2b-256 b57783f985f480eebcc4e235f6da344daa985edc0f15607f40f8aaa66b752029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6db95d3e955aa5dbe42db691dd77cdddc0bc15f9883aa1def51f3ca40d49c1d6
MD5 b9c5dcb13a0a0af8fd15ba6b538f21d7
BLAKE2b-256 05fdef743710edd462edd0fbdb2105098f0bd52b112e8438a18f1d8d5f932d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af46f635513c7339419374f46f4f662cee7140bfb86de4377885a2c1de2278d4
MD5 bd8574309d562e4ffcaa4e92a79950c8
BLAKE2b-256 337ecc180bf40515c7665522b88490f5c2257a4e76cebc58d0826b90d3ec547a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce14598b8fa93e51aed0f400e446fddd6b26297ba5965fd0c0585614b60b9fc0
MD5 58b6d3ce171c4244f63d49e0e92c67c5
BLAKE2b-256 fb9d176e06bae0bb1d0ace6d72c9b539789e6d21705f58233dac49c4c3b76a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f48c2562a1d1426b6db7567511dc62817df43357041e1fd4ea5c68278bfa11b
MD5 9a0b3b1bbf104d17fc177243c9da5b92
BLAKE2b-256 540fa0d7e4f15ff75be51a7407adfee68b1e9309da867ff1227400b61797a111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dab1d89f969046057be2b904a7bbf40df114f43aebfb3ccdceb054d9c40ec56d
MD5 63dcd2754a1d18b93b7dbe9008d56615
BLAKE2b-256 4f0f8f988cfab2afccb9b118af1a4a6f816206fa01bb4943af3a6bebc86c9a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4b683a40cf07b6d16704ead92a7aee24208d3af83d55d31248cdac003f8591c
MD5 977a94c927b5cb0517a4216d74260323
BLAKE2b-256 69b99afd5b57f77ae6efc75f326c870411513a1f3cb65cebed203dc123954aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 02140c1a9f2107a16c074c9e558a556faafb0dc3c2e9332c6685c5506823ab9d
MD5 4db0954f414840fa5ea1aaf49384afff
BLAKE2b-256 d8920154a928816f70649d5bd02d6f122bdb9cff0f59919aae04d1522b1eaed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d81f6f5f6e66481aadd2fc087a937833312de23cd94b5ea1b225f35fafb0a00
MD5 047d2823a71d4f20cee9ab4153e77915
BLAKE2b-256 c20359f6a7d910060e9e3ad35b2226e2df0bea017cb2a361e82b275a0ba6d849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.3.2-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 80bdfc7039674c670e1afbf95849ce2075731785527eeac7e3850e862dec239b
MD5 9ffb716d84d462b8df129ddd4f031c68
BLAKE2b-256 3676705373623e0e8ae1dfb4f53e260cd9d106ebdbc99703ac5f6c8c7f8f2d1a

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